home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / ebksrc.zip / EBDEF.HPP < prev    next >
C/C++ Source or Header  |  1991-07-30  |  1KB  |  57 lines

  1. /*
  2.  
  3.     ebdef.hpp
  4.     7-30-91
  5.     Electronic Book Definitions header
  6.  
  7.     Copyright 1991
  8.     John W. Small
  9.     All rights reserved
  10.  
  11.     PSW / Power SoftWare
  12.     P.O. Box 10072
  13.     McLean, Virginia 22102 8072 USA
  14.  
  15.     John Small
  16.     Voice: (703) 759-3838
  17.     CIS: 73757,2233
  18.  
  19. */
  20.  
  21. #ifndef EBDEF_HPP
  22. #define EBDEF_HPP
  23.  
  24. /*
  25.  
  26.     EB constants are defined below.  For a discussion of
  27.     inlinks, outlinks, launchs, and targets see the
  28.     reference section of eb.doc.
  29.  
  30. */
  31.  
  32.  
  33.  
  34. #define HYPER_LINKS_DELIMIT         '|'
  35. #define HYPER_LINKS_DELIMIT_STR     "|"
  36. #define HYPER_INLINKS_BEGIN        '>'
  37. #define HYPER_INLINKS_END        '<'
  38. #define HYPER_OUTLINKS_BEGIN        '<'
  39. #define HYPER_OUTLINKS_END        '>'
  40. #define HYPER_LAUNCH_DELIMIT        '~'
  41. #define HYPER_TARGET_SPLIT        '^'
  42. #define HYPER_TARGET_SPLIT_STR        "^"
  43. #define HYPER_TARGET_SYSTEM        '>'
  44. #define HYPER_TARGET_SPAWN        '?'
  45.  
  46. #define MAX_HYPER_LINE              256
  47. #define MAX_HYPER_TOPIC_LINES      4096
  48. #define MAX_HYPER_TOPIC_LAUNCHES   8192
  49. #define MAX_HYPER_TOC              1024
  50. #define MAX_HYPER_IDX              4096
  51. #define MAX_ARG_LEN                 256
  52.  
  53.  
  54.  
  55. #endif
  56.  
  57.